@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
  }
  body {
    background-color: #0a0a0a;
    color: #fff;
    line-height: 1.6;
  }
  
  a {
    text-decoration: none;
    color: whitesmoke;
    font-size: 18px;
  }
  
  header.hero {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.7);
  }
  
  
 .logo img{
    width: 160px;
    padding-left: 10px;
 }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  
  .nav-links a:hover {
    text-decoration: none;
    color: #f5c54d;
  }


  /* Basic styling */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

/* first phase */

.am-intro {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/am-bg.jpg');
    background-size: cover;
    color: white;
    margin-bottom: 40px;
}

.am-intro h1 {
    font-size: 2.5rem;
    color: #f5c54d;
    margin-bottom: 15px;
}

.am-intro p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #ffffff;
}

.key-details {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
}

.detail-icon {
    color: #f9c04a;
    font-size: 24px;
    margin-top: 3px;
    flex-shrink: 0;
}

.detail-item h3 {
    color: #f9c04a;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.detail-item p {
    color: #dddddd;
    line-height: 1.6;
}
/* 
.profit-targets {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
    border-left: 4px solid #f5c54d;
}

.profit-targets h2 {
    color: #f5c54d;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.profit-targets ul {
    list-style: none;
    padding-left: 0;
    line-height: 2;
}

.profit-targets li {
    margin-bottom: 8px;
    color: #ffffff;
}

.profit-targets li strong {
    color: #f5c54d;
} */

.warning-note {
    background: rgba(204, 51, 0, 0.1);
    border: 1px solid #cc3300;
    border-radius: 8px;
    padding: 20px;
    margin: 40px auto;
    width: 50%;
}

.warning-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.warning-icon {
    font-size: 24px;
    color: #ff6633;
    flex-shrink: 0;
    margin-top: 3px;
}

.warning-text h3 {
    color: #ff6633;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.warning-text p {
    color: #ff9966;
    line-height: 1.5;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .am-intro {
        padding: 40px 20px;
    }
    
    .am-intro h1 {
        font-size: 2rem;
    }
    
    .am-intro p {
        font-size: 1.1rem;
    }
    
    .detail-item {
        flex-direction: column;
        gap: 8px;
    }
    
    .profit-targets {
        padding: 20px;
    }
}


   


/* end of first phase */
  
.account-management {
  padding: 60px 40px;
}

.intro {
  text-align: center;
  margin-bottom: 50px;
}

.intro h1 {
  font-size: 32px;
  color: #f9c04a;
}

.intro p {
  font-size: 18px;
  color: #ccc;
}

.plans-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.plan-card {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 25px;
  width: 300px;
  transition: transform 0.3s ease;
}

.plan-card:hover {
  transform: scale(1.05);
  border-color: #f9c04a;
}

.plan-card h2 {
  color: #f9c04a;
  margin-bottom: 15px;
}

.plan-card ul {
  list-style: none;
  padding: 0;
  line-height: 1.6;
}

/* Past results section */
.results-section {
  padding: 40px 20px;
  background-color: #111;
  text-align: center;
}

.slider {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto; 
  scroll-snap-type: x mandatory; 
  -webkit-overflow-scrolling: touch; 
  scrollbar-width: none; 
  cursor: grab;
}

.slider::-webkit-scrollbar {
  display: none; 
}

.slide-track {
  display: flex;
  gap: 15px; 
  padding: 10px 0;
  width: max-content; 
}

.slide-track img {
  scroll-snap-align: start; /* Snap each image */
  width: 250px;
  border-radius: 10px;
  transition: transform 0.3s ease;
  flex-shrink: 0; /* Prevent shrinking */
}

.slide-track img:hover {
  transform: scale(1.05); /* Slightly smaller hover effect */
}

/* Auto-scroll animation (optional) */
@keyframes autoscroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-100% + 900px)); }
}

/* Apply auto-scroll only when not hovering */
.slide-track:not(:hover) {
  animation: autoscroll 70s linear infinite; /* Increased from 20s */
}


/* CTA Section Styling */
.cta-section {
  background-color: #1e1e1e; /* Dark background */
  padding: 60px 20px;
  text-align: center;
}

.cta-content h2 {
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 10px;
}

.cta-content p {
  color: #cfcfcf;
  font-size: 18px;
  margin-bottom: 25px;
}

.cta-btn {
  background-color: #d4a545;
  color: #000;
  padding: 12px 25px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #c0943b;
}

/* Responsive styles */


.reviews-section.dark-theme {
  background-color: #111;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.reviews-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #fff;
}

.reviews-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: nowrap; /* Prevent wrapping for side-by-side */
  overflow-x: auto; /* Horizontal scroll on small screens */
  padding-bottom: 20px;
}

.review-card {
  background: #1e1e1e;
  display: flex;
  align-items: center;
  min-width: 320px;
  max-width: 400px;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.05);
  text-align: left;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid #555;
}

.review-text h4 {
  margin: 0 0 6px;
  font-size: 18px;
  color: #fff;
}

.review-text p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.5;
}

.reviews-container::-webkit-scrollbar {
  height: 6px;
}
.reviews-container::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}

 /* footer */

.site-footer {
    background-color: #0e0e0e;
    color: #ffffff;
    padding: 60px 20px 30px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.footer-col h2, .footer-col h3 {
    margin-bottom: 15px;
    color: #f5c54d;
    font-size: 18px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #ccc;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #f5c54d;
}

.footer-col.social-links a {
    margin-right: 10px;
    display: inline-block;
}

.footer-col.social-links img {
    width: 24px;
    height: 24px;
    /* filter: brightness(0) invert(1); */
    transition: transform 0.3s ease;
}

.footer-col.social-links img:hover {
    transform: scale(1.1);
    /* filter: brightness(0) saturate(100%) invert(69%) sepia(63%) saturate(455%) hue-rotate(9deg) brightness(95%) contrast(90%); */
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: #888;
}
  


/* Responsive Styles */
body.menu-open {
  overflow: hidden;
}
@media (max-width: 768px) {

  
  .navbar {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem;
  }

   .hamburger {
    display: block;
    z-index: 1001;
    order: 2;
  }

  .nav-links {
    display: none;
    position: fixed;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 70%;
    height: auto;
    max-height: 60vh;
    background-color: #111;
    top:80px;
    left: 0;
    right: -100%;
    z-index: 10;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding-top: 80px;
  }

  .nav-links.show {
    display: flex;
    right: 0;
    transform: translateX(0);
  }

  .nav-links li {
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid #333;
    margin: 15px 0;
    width: 100%;
  }

  .nav-links ::-webkit-scrollbar{
    width: 5px;
  }

 .logo img {
    width: 120px;
  } 
  .logo {
    order: 1;
  }

  .hero-text{
    padding: 2rem;
    padding-top: 120px;
    width: 100%;
  }

  .hero-text h2 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  
  .footer-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-col {
    flex: 1 1 100%;
    margin-bottom: 2rem;
    text-align: center;  
  }

  .footer-col.social-links{
    justify-content: center;
  }
}

@media (max-width: 480px) {
 .navbar{
  padding: 1rem;
 }

 .logo img{
  width: 100px;
 }

 .hamburger{
  font-size: 24px;
 }

 .nav-links{
  width: 80%;
 }


 .hero-text{
  padding: 1.5rem;
  padding-top: 100px;
 }

 .hero-text h2{
  font-size: 1.5rem;
 }

 .cta-btn{
  padding: 0.6rem 1rem;
 }
 
  .am-intro h1 {
        font-size: 1.8rem;
    }
    
    .am-intro p {
        font-size: 1rem;
    }
    
    .detail-item h3 {
        font-size: 1.1rem;
    }
    
    .profit-targets h2 {
        font-size: 1.1rem;
    }

.warning-note {
    padding: 12px;
    margin:25px 0;
    width:50%;
}

.warning-content{
    flex-direction:column;
    gap:8px;
}

.warning-icon{
    margin-top:0;
}
 .footer-container{
  gap: 1rem;
 }

 .footer-col h3{
  font-size: 16px;
 }

 .footer-col.social-links img{
  width: 20px;
  height: 20px;
 }
}
